<video> Tag is use to use to Insert Video File in a Webpage.
control attribute is use to video controls should be Displayed.
autoplay attribute is use to play the video automatically when the webpage is loaded.
muted attribute is use to define the video output should be muted.
loop attribute is use to play the video again if the video is end.
src attribute is use to define the sourse of the video file.
height attribute is use to define the height of the video player.
width attribute is use to define the width of the video player.
poster attribute is use to define the thumbnail of the video file (when the webpage is loaded).
<video poster="N2.jpg" id="video1" width="420" autoplay loop> <source src="Faded.mp4" type="video/mp4"> </video>